home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / bubble_s.swf / scripts / DefineButton2_190 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2010-08-12  |  497 b   |  21 lines

  1. on(release){
  2.    var Level = _root.vLevel;
  3.    var Name = _root.TOPN[0];
  4.    var Score = _root.TOPS[0];
  5.    if(Level == 2)
  6.    {
  7.       Name = _root.TOPN[10];
  8.       Score = _root.TOPS[10];
  9.    }
  10.    if(Level == 3)
  11.    {
  12.       Name = _root.TOPN[20];
  13.       Score = _root.TOPS[20];
  14.    }
  15.    var stSend = Score + "\t" + Level + "\t" + Name + "\t" + "bub" + "\t" + "exe";
  16.    if(0 < Score)
  17.    {
  18.       getURL("http://absolutist.com/cgi-bin/gameres.pl?e=" + _root.Crypto(stSend),"_top");
  19.    }
  20. }
  21.